Skip to main content

Random Node

The Random Node gets a trigger to the Input Port, applies random functions from a collection, generates values, sends the values to the Output Ports.

Random Node
Random Node

The Random Node provides 3 functions:

  • RANDSTR("ALPHABET", N). Returns a string of length N, consisting of the ALPHABET on N characters;
  • RANDN(A, B). Returns a uniformly random integer between two values, inclusive;
  • RAND(). Returns a random number between 0 inclusive and 1 exclusive.

The example abovee shows the results for 3 random functions with defined parameters:

  • RANDSTR("$@1234567890ABCDEF", 20)
  • RANDN(50, 100)
  • RAND()